/* Base reset & container */
* {
    box-sizing: border-box;
    margin: 50;
    padding: 10;
    font-family: 'Segoe UI', sans-serif;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .use-case-section {
  
  padding: 4rem 1rem;
  background-color: #fdfdfd;
  display: flex;
  justify-content: center;
}

.use-case-wrapper {
  width: 100%;
  max-width: 1200px;
}

.use-case-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #0b5ed7;

}

.use-case-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
}

.use-case-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
}

.use-case-card img {
  width: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(37%) sepia(100%) saturate(748%) hue-rotate(178deg) brightness(103%) contrast(103%);
}

.use-case-card h3 {
  font-size: 1.1rem;
  color: #0d0d0d;
  margin-bottom: 1rem;
  font-weight: 700;
}

.use-case-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}
/* Footer Section */
  .site-footer {
    position: relative;
    height: 40vh;
    overflow: hidden;
  }
  .footer-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  .footer-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
    padding: 1rem 0;
  }
  .footer-logo-link {
    display: flex;
    align-items: center;
    background: transparent;
  }
  .footer-logo {
    height: 40px;
    width: auto;
    background: transparent;
    border-radius:10px;
  }
  .footer-nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    color: #ccc;
    font-size: 0.875rem;
  }